home *** CD-ROM | disk | FTP | other *** search
/ Gold Medal Software 3 / Gold Medal Software - Volume 3 (Gold Medal) (1994).iso / misc / ofcnhome.arj / SYNCPCS.BAT < prev   
DOS Batch File  |  1994-01-12  |  873b  |  27 lines

  1. @echo off
  2. cls
  3. echo Synchronizing PCs...
  4. REM Ask the user if we need to run oah s pass 2
  5. c:\dos\choice /c:yn /t:y,10 /n "Are you going to do a backup ? [Y,n]: "
  6. if errorlevel 2 goto runpcb
  7. c:\uti\ofcnhom /n1 c:*.*
  8.  
  9. :runpcb
  10. REM Make sure a copy of CONFIG and AUTOEXEC will be saved...
  11. copy c:\config.sys c:\config.%pc%>nul
  12. copy c:\autoexec.bat c:\autoexec.%pc%>nul
  13. REM ...but not the actual files, to avoid overwriting the other PC's configuration.
  14. REM (Setting off the "Archive" bits will tell CPB that these files have NOT changed.)
  15. c:\dos\attrib -a c:\config.sys
  16. c:\dos\attrib -a c:\autoexec.bat
  17. REM Now run PC Backup (the /PS2 param only resets the mouse):
  18. cpbackup /ps2
  19.  
  20. :sync
  21. c:\dos\choice /c:yn /t:y,10 /n "Did you restore anything ? [Y,n]: "
  22. if errorlevel 2 goto exit
  23. REM User did a restore - Now run pass 1:
  24. c:\uti\ofcnhom /n2 c:*.*
  25.  
  26. :done
  27.